home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / m_to_r / propexp / propform.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-09-15  |  731 b   |  42 lines

  1. unit Propform;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Buttons;
  8.  
  9. type
  10.   TPropExpert = class(TForm)
  11.     Label1: TLabel;
  12.     Label2: TLabel;
  13.     Label3: TLabel;
  14.     Label4: TLabel;
  15.     ReadMethod: TCheckBox;
  16.     WriteMethod: TCheckBox;
  17.     Label5: TLabel;
  18.     Label6: TLabel;
  19.     ClassName: TEdit;
  20.     PropertyName: TEdit;
  21.     DataType: TEdit;
  22.     ArrayIndex: TEdit;
  23.     Default: TEdit;
  24.     Index: TEdit;
  25.     BitBtn1: TBitBtn;
  26.     Label7: TLabel;
  27.     Label8: TLabel;
  28.   private
  29.     { Private declarations }
  30.   public
  31.     { Public declarations }
  32.   end;
  33.  
  34. var
  35.   PropExpert: TPropExpert;
  36.  
  37. implementation
  38.  
  39. {$R *.DFM}
  40.  
  41. end.
  42.